@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

:root {
    --cd-crimson: #8d0d0d;
    --cd-crimson-dark: #470404;
    --cd-gold: #d4a959;
    --cd-gold-light: #f0d090;
    --cd-bg-dark: #0a0a0a;
    --cd-bg-section: #111111;
    --cd-text: #e0e0e0;
    --cd-text-muted: #888888;
}

body {
    font-family: "Philosopher", sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== SCROLL REVEAL ANÃ„Â°MASYONLARI ===== */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* FarklÃ„Â± animasyon tÃƒÂ¼rleri */
.reward-card.reveal-element,
.edition-card.reveal-element {
    transform: translateY(80px) scale(0.95);
}

.reward-card.revealed,
.edition-card.revealed {
    transform: translateY(0) scale(1);
}

.feature-card.reveal-element {
    transform: translateY(50px) rotateX(10deg);
    transform-origin: center bottom;
}

.feature-card.revealed {
    transform: translateY(0) rotateX(0);
}

.gallery-item.reveal-element {
    transform: scale(0.8);
    opacity: 0;
}

.gallery-item.revealed {
    transform: scale(1);
    opacity: 1;
}

.story-grid.revealed {
    transform: translateX(0);
    opacity: 1;
}

.section-title.reveal-element {
    transform: translateY(40px) scale(0.9);
}

.section-title.revealed {
    transform: translateY(0) scale(1);
}

.step-card.reveal-element {
    transform: translateY(40px);
}

.step-card.revealed {
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 28px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffdea4;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    border-radius: 4px;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--cd-crimson);
}

.nav-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 113%;
    left: 0;
    min-width: 220px;
    background: rgb(16 16 16 / 85%);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgb(196 30 30 / 20%);
    color: #fff;
}

.dropdown-item img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.dropdown-header {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cd-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-evenly;
}

.header-btn {
    background: url(../img/header-btn.png);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    width: 200px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background: url(../img/header-btn_hover.png);
}

.lang-selector {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav-link .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-nav-item.open .mobile-nav-link .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.open .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    color: var(--cd-crimson);
}

.mobile-dropdown-item img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: block;
    width: 100%;
    background: var(--cd-crimson);
    color: #fff;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .header-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Intro Section - Video Arka Plan */
.intro-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* padding: 0px 0px 0px; */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #931212;
}

.intro-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.intro-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgb(43 0 0 / 80%) 100%);
}

.intro-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.intro-logo {
    max-width: 500px;
    margin-bottom: 30px;
}

.intro-title {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--cd-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-subtitle {
    font-size: 20px;
    color: var(--cd-text-muted);
    margin-bottom: 40px;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: url(../img/intro-btn.png);
    color: #ffe19b;
    text-shadow: 0px 0px 10px #000000;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    width: 327px;
    height: 121px;
    justify-content: center;
}

.intro-btn:hover {
    transform: scale(1.05) !important;
}

.intro-btn.outline {
    background: url(../img/intro-btn2.png);
    color: #390000;
    text-shadow: 0px 0px 10px #ffde36;
}

.intro-btn.outline:hover {
    transform: scale(1.05) !important;
}

.intro-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-buttons .intro-btn {
    transition: all 0.3s ease-out;
}

.intro-buttons .intro-btn:first-child {
    transform: translateX(0);
}

.intro-buttons .intro-btn:last-child {
    transform: translateX(0);
}

.scroll-indicator {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Game Section - Video BÃƒÂ¶lÃƒÂ¼mÃƒÂ¼ */
.game-section {
    min-height: 60vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #931212;
}

.game-section-header {
    text-align: center;
    margin-bottom: 40px;
    z-index: 2;
}

.game-section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.game-section-title span {
    color: var(--cd-crimson);
}

.game-section-desc {
    font-size: 18px;
    color: var(--cd-text-muted);
    max-width: 600px;
}

/* Video Background */
.video-wrap {
    width: 100%;
    height: 80vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-area {
    position: relative;
    overflow: hidden;
    transition: all 0.15s ease-out;
    will-change: height, border-radius, box-shadow;
    width: 100%;
    height: 100% !important;
    transform: none !important;
    border-radius: 0;
    box-shadow: none;
}

/* Video Ã„Â°ÃƒÂ§indeki Overlay YazÃ„Â±lar */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 30%) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 10;
    pointer-events: none;
}

.video-overlay.hidden {
    opacity: 0;
}

.video-overlay-logo {
    max-width: 300px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.video-overlay-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.video-overlay-title span {
    color: var(--cd-gold);
}

.video-overlay-subtitle {
    width: 800px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto 24px;
    background: url("../img/parchment.png") center/contain no-repeat;
}

/* Paragraf alanı */
.video-overlay-subtitle p {
    width: 600px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #000000; /* parşömen uyumlu koyu ton */
    text-align: center;
    overflow: hidden;
    text-shadow: 1px 1px 2px #ffebc7;
}

.video-overlay-hint {
    font-size: 14px;
    color: #ffc966;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.video-overlay-hint .arrow {
    font-size: 20px;
}

/* Video AlanÃ„Â±nda OlduÃ„Å¸unu GÃƒÂ¶steren Ã„Â°ndikatÃƒÂ¶r */
.video-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(196, 30, 58, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.video-indicator.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.video-indicator .icon {
    font-size: 18px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Video BÃƒÂ¶lÃƒÂ¼mÃƒÂ¼ Ãƒâ€¡erÃƒÂ§evesi - KaldÃ„Â±rÃ„Â±ldÃ„Â± */

/* Scroll ipucu */
.escape-hint {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-wrap.active .escape-hint {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-poster.visible {
    opacity: 1;
}

/* Mobile Hero Image */
.hero-image-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    text-align: center;
    margin-top: 40px;
    z-index: 2;
}

.game-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.game-info h2 span {
    color: var(--cd-gold);
}

.game-info p {
    color: var(--cd-text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-video,
    .hero-poster {
        display: none;
    }
    .hero-image-mobile {
        display: block;
    }
    .screen-area,
    .screen-area.compact {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    .intro-title {
        font-size: 40px;
    }
}

/* Section Styles */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-dark {
    background: var(--cd-bg-dark);
}

.section-darker {
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #e1bc7a;
}

.section-title h2 span {
    color: var(--cd-gold);
}

.section-title p {
    font-size: 16px;
    color: var(--cd-text-muted);
}

.section-img{
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 20px;
}

.section-img img{
    max-width: 100%;
    border-radius: 15px;
    border: 1px solid #690e0e;
    transition: all 0.3s;
}

.section-img img:hover{
    box-shadow: 0 0 30px rgb(196 30 30 / 40%);
}

.section-img p {
    position: absolute;
    padding:30px 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 600px;
    background: rgb(16 16 16 / 38%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(180deg, #00000000 0%, #2d0000 100%);
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #931212;
}

.rewards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/section_img/onkayit.png');
    opacity: 0.1;
    z-index: 0;
}

.rewards-section > .container {
    position: relative;
    z-index: 1;
}

/* Game Tabs */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.game-tab {
    background: url('../img/game-tab.png');
    font-family: "Philosopher", sans-serif;
    width: 256px;
    height: 63px;
    color: #ffffff;
    text-shadow:0 0 10px #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: flex;
    gap: 12px;
    justify-content: space-evenly;
    align-items: center;
    text-decoration:none;
}

.game-tab:hover {
    background: url('../img/game-tab_hover.png');
    color: #fff;
}

.game-tab.active {
    background: url('../img/game-tab.png') center no-repeat;
    background-size: contain;
    color: #ffe9c3;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    text-shadow:0 0 10px #9e0000;
}

.game-tab img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.rewards-content {
    display: none;
}

.rewards-content.active {
    display: block;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reward-card {
    background: linear-gradient(180deg, rgba(30, 20, 20, 0.8) 0%, rgba(15, 10, 10, 0.9) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.reward-card:hover {
    border-color: var(--cd-crimson);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
}

.reward-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.reward-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cd-gold);
    margin-bottom: 12px;
}

.reward-desc {
    font-size: 14px;
    color: var(--cd-text-muted);
    line-height: 1.6;
}

.reward-game {
    display: inline-block;
    background: rgba(196, 30, 58, 0.2);
    color: var(--cd-crimson);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 16px;
}

.features-section {
    background: #080808;
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #931212;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/section_img/partners-bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.features-section > .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(180deg, rgba(20, 15, 15, 0.9) 0%, rgba(10, 5, 5, 0.95) 100%);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cd-crimson), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--cd-crimson);
    box-shadow: 0 30px 60px rgb(196 30 30 / 30%), 0 0 100px rgb(196 30 30 / 10%);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-inner {
    padding: 20px;
    text-align: center;
    position: relative;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3) 0%, rgba(139, 21, 40, 0.5) 100%);
    border: 2px solid var(--cd-crimson);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    position: relative;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3), inset 0 0 30px rgba(196, 30, 58, 0.2);
    transition: all 0.3s;
}

.feature-icon img{
    max-width:100%;
    border-radius:20px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.5), inset 0 0 40px rgba(196, 30, 58, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 24px;
    animation: featurePulse 2s infinite;
}

@keyframes featurePulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.feature-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--cd-gold);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(212, 169, 89, 0.3);
}

.feature-desc {
    font-size: 15px;
    color: var(--cd-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 5px;
}

.feature-stats .stat {
    background: rgba(196, 30, 58, 0.15);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: #ffeeab;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    color: var(--cd-crimson);
}

.feature-card-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(360deg, black, #2f0000);
    padding: 100px 24px;
    position: relative;
    border-bottom: 1px solid #931212;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/section_img/onsoz-bg.png) center / cover no-repeat;
    opacity: 0.10;
    z-index: 0;
}

.gallery-section > .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    background:url('../img/gallery-img-corner-left.png');
    width:51px;
    height:44px;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-item::after {
    content: '';
    background:url('../img/gallery-img-corner-right.png');
    width:51px;
    height:44px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Pre-Register Section */
.preregister-section {
    background: linear-gradient(180deg, #0a0505 0%, #000 100%);
    padding: 100px 24px;
    position: relative;
}

.preregister-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/section_img/onkayit.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.preregister-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.preregister-form {
    background: rgba(15, 10, 10, 0.9);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 16px;
    padding: 48px;
}

.preregister-form h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.preregister-form h2 span {
    color: var(--cd-crimson);
}

.preregister-form > p {
    color: var(--cd-text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select{
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s;
}

.form-group option{
    background: rgb(26 21 21);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cd-crimson);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cd-crimson);
    cursor: pointer;
}

.form-group.checkbox-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--cd-crimson), var(--cd-crimson-dark));
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

.character-render {
    text-align: center;
    position: relative;
}

.character-render img {
    max-width: 100%;
    max-height: 750px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
}

.character-info {
    margin-top: 24px;
}

.character-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--cd-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.character-info p {
    color: var(--cd-text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .preregister-grid {
        grid-template-columns: 1fr;
    }
    .character-render {
        order: -1;
    }

    .game-tab {
        background: url(../img/game-tab_hover.png) center no-repeat;
        background-size: contain;
        font-size: 13px;
    }
    
    .game-tab:hover {
        background: url(../img/game-tab_hover.png) center no-repeat;
    }
    
    .game-tab.active {
        background: url(../img/game-tab.png) center no-repeat;
        background-size: contain;
        box-shadow: none;
    }
    
    .game-tab img {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }
}

/* Footer */

/* Hafif hareketli doku hissi */
/* ===== Footer (Kurumsal + MMORPG) ===== */

/* Mevcut .game-footer'ı güçlendir (alpha değerleri 0-1 olmalı) */
.game-footer{
  position: relative;
  padding: 56px 0 24px;
  background:
  radial-gradient(circle at top, rgba(255,80,80,.14), transparent 62%),
  linear-gradient(180deg, #140000, #070000);
  border-top: 2px solid rgba(255,180,60,.30);
  overflow: hidden;
}

/* İnce “rune” çizgisi + üst glow */
.game-footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent, rgba(255,207,122,.65), transparent); */
  opacity:.85;
}
.game-footer::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top: 0;
  height: 372px;
  background: radial-gradient(circle at top, rgb(255 23 23 / 16%), transparent 100%);
  pointer-events:none;
}

/* Grid (Bootstrap'siz) */
.gf-grid{
  display:grid;
  grid-template-columns: 2.8fr 0.8fr 0.4fr;
  gap: 28px;
  align-items:start;
}

@media (max-width: 1100px){
  .gf-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .gf-grid{ grid-template-columns: 1fr; }
}

/* Logo */
.footer-logo img{
  height: 48px;
  width: auto;
  display:block;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.6));
}

/* Açıklama + rozetler (senin mevcut sınıflarınla uyumlu) */
.game-footer-desc{
  margin: 14px 0 0;
  color:#d6b98c;
  opacity:.92;
  font-size: 14.5px;
  line-height: 1.75;
}

.game-footer-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.gf-badge{
  font-size:12px;
  color:#ffd9a5;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255, 80, 80, .10);
  border: 1px solid rgba(255,180,60,.25);
}

/* Kurumsal “trust” satırı */
.gf-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin-top:16px;
  color: rgba(214,185,140,.92);
  font-size: 13px;
}
.gf-trust-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,180,60,.14);
}
.gf-trust-item i{ color:#ffcf7a; opacity:.95; }

/* Başlık + linkler */
.game-footer-title{
  font-size: 13px;
  letter-spacing: .9px;
  text-transform: uppercase;
  color:#ffcf7a;
  margin-bottom: 12px;
}

.game-footer-links{list-style:none;padding:0;margin:0;}
.game-footer-links li{ margin: 9px 0; }

.game-footer-links a{
  color:#d6b98c;
  text-decoration:none;
  font-size:14px;
  transition: all .2s ease;
}
.game-footer-links a:hover{
  color:#fff;
  text-shadow: 0 0 12px rgba(255,140,60,.55);
}

/* Sağ panel (MMORPG panel ama kurumsal temiz) */
.game-footer-panel{
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,180,60,.18);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
  position: relative;
  overflow:hidden;
}

/* panelin üstünde çok hafif “ornament” çizgisi */
.game-footer-panel::before{
  content:"";
  position:absolute;
  left:-20%;
  right:-20%;
  top:0;
  height:3px;
  background: linear-gradient(90deg, transparent, rgba(196,30,30,.75), transparent);
  opacity:.55;
}

.gf-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 10px;
}

.gf-status{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d6b98c;
  font-size:14px;
  white-space:nowrap;
}
.gf-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#21e786;
  box-shadow: 0 0 18px rgba(33,231,134,.65);
}
.gf-status-text{ color:#fff; font-weight:700; }
.gf-status-meta{ opacity:.85; }

/* meta kutular */
.gf-meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 14px;
  margin-top: 12px;
}
@media (max-width: 991px){
  .gf-meta{ grid-template-columns: 1fr; }
}

.gf-meta-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(255,80,80,.08);
  border: 1px solid rgba(255,180,60,.18);
  color:#d6b98c;
  font-size:13px;
}
.gf-meta-item b{ color:#fff; font-weight:800; }

/* panel divider */
.gf-panel-divider{
  height:1px;
  background: rgba(255,180,60,.14);
  margin: 14px 0;
}

/* sosyal ikonlar */
.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.footer-social a{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,180,60,.16);
  color:#ffcf7a;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.footer-social a:hover{
  transform: translateY(-2px);
  color:#fff;
  box-shadow: 0 12px 30px rgba(196,30,30,.22);
}

/* iletişim */
.gf-contact{ margin-top: 12px; }
.gf-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d6b98c;
  font-size:14px;
  margin-top:10px;
}
.gf-contact-item i{ color:#ffcf7a; opacity:.95; }
.gf-contact-item a{ color:#d6b98c; text-decoration:none; }
.gf-contact-item a:hover{ color:#fff; }

/* alt bar */
.gf-bottom{
  padding-top:18px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,180,60,.16);
}
.gf-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-text{
  margin:0;
  color: rgba(214,185,140,.9);
  font-size: 13.5px;
}
.gf-mini-link{
  color:#d6b98c;
  text-decoration:none;
  transition: all .2s ease;
}
.gf-mini-link:hover{
  color:#fff;
  text-shadow: 0 0 12px rgba(255,140,60,.45);
}
.gf-sep{ opacity:.5; margin: 0 8px; }



/* Story Sections - Sol/SaÃ„Å¸ dÃƒÂ¼zen */
.story-section {
    padding: 50px 24px;
    position: relative;
    background: linear-gradient(
        313deg, #250000, #000000);
    border-bottom: 1px solid #931212;
}

.story-section:nth-child(even) {
    background: linear-gradient(45deg, #250000, #000000);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-section.reverse .story-grid {
    direction: rtl;
}

.story-section.reverse .story-grid > * {
    direction: ltr;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-text h2 span {
    color: var(--cd-gold);
}

.story-text p {
    font-size: 16px;
    color: var(--cd-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-text p span{
    font-size: 14px;
    color: var(--cd-gold);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .story-section.reverse .story-grid {
        direction: ltr;
    }
}

/* Notes Section */
.notes-section {
    background: var(--cd-bg-dark);
    padding: 60px 24px;
}

.notes-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cd-gold);
}

.notes-list {
    list-style: none;
}

.notes-list li {
    font-size: 13px;
    color: var(--cd-text-muted);
    padding: 8px 0;
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.notes-list li::before {
    content: 'Ã¢â‚¬Â¢';
    position: absolute;
    left: 0;
    color: var(--cd-crimson);
}

/* Responsive */
@media (max-width: 1024px) {
    .rewards-grid,
    .editions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .rewards-grid,
    .editions-grid,
    .steps-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 32px;
    }
    .feature-title {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--cd-crimson);
    border-radius: 4px;
}

.intro-countdown {
  margin: 50px 0px;
  text-align: center;
  color: #ffe2ad;
}

.intro-countdown .cd-label {
  font-size: 50px;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.cd-time {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.cd-box {
  min-width: 70px;
  padding: 5px 8px;
  background: linear-gradient(180deg, rgb(77 14 14), rgb(26 0 0 / 0%));
  border: 1px solid #690e0e;
  box-shadow: 0 0 18px rgb(197 0 0 / 25%);
}

.cd-box span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #ffd27b;
  text-shadow: 0 0 10px rgba(255,211,122,.6);
}

.cd-box small {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
}

.rewards-section .section-title p{
    opacity:.85
}
.rewards-showcase{
    margin-top:28px;
    display:grid;
    grid-template-columns: 1.25fr .75fr;
    gap:24px;
    align-items:stretch;
}
.rewards-panel{
    position:relative;
    border:1px solid rgba(255,255,255,.12);
    background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
    border-radius:18px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.rewards-panel:before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(1000px 220px at 20% 0%, rgba(255,0,0,.22), transparent 100%);
    pointer-events:none;
}
.rewards-shot{
    height:100%;
    min-height:320px;
    display:flex;
    flex-direction:column;
}
.rewards-shot .shot-media{
    position:relative;
    flex:1;
    min-height:320px;
}
.rewards-shot img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:saturate(1.05) contrast(1.02);
}
.rewards-shot .shot-fade{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, .75) 100%);
}
.rewards-shot .shot-caption{
    position:absolute;
    left:16px;
    bottom:14px;
    right:16px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
    font-size:13px;
    color:rgba(255,255,255,.9);
    text-shadow:0 8px 24px rgba(0,0,0,.7);
}
.rewards-loot{
    padding:18px 18px 16px;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.rewards-loot h3{
    margin:0;
    font-size:18px;
    letter-spacing:.2px;
}
.rewards-loot p{
    margin:0;
    opacity:.85;
    font-size:13px;
    line-height:1.45;
}
.item-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:12px;
    margin-top:6px;
}
.item-slot{
    position:relative;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.16);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.35));
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    overflow:hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.item-slot:before{
    content:"";
    position:absolute;
    inset:-2px;
    background: radial-gradient(1000px 220px at 20% 0%, rgb(209 0 0 / 48%), #000000 100%);
    opacity:.65;
    pointer-events:none;
}
.item-slot:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,.14), transparent 55%);
    opacity:.35;
    pointer-events:none;
}
.item-slot img{
    width:32px;
    height:auto;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.55));
    z-index:1;
}
.item-slot:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(0,0,0,.35);
    border-color: rgba(255,200,0,.35);
}

/* Icon-size aware slots (icons: 32x32 / 32x64 / 32x96) */
.s32x32{height:72px;}
.s32x64{height:104px;}
.s32x96{height:136px;}
.s32x64 img{max-height:64px;}
.s32x96 img{max-height:96px;}

/* Responsive */
@media (max-width: 992px){
    .rewards-showcase{grid-template-columns:1fr; }
    .rewards-shot .shot-media{min-height:260px;}
    .item-grid{grid-template-columns: repeat(3, 1fr);}
}
@media (max-width: 520px){
    .item-grid{grid-template-columns: repeat(2, 1fr);}
}

.lightbox{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.88);
    z-index:9999;
    padding:24px;
    backdrop-filter: blur(4px);
}

.lightbox.open{
    display:flex;
    animation: lightboxFade .25s ease;
}

@keyframes lightboxFade{
    from{opacity:0}
    to{opacity:1}
}

.lightbox-content{
    max-width:min(1100px,96vw);
    max-height:86vh;
    position:relative;
    border-radius:10px;
    overflow:hidden;
    box-shadow:
    0 0 40px rgba(255,80,80,.25),
    0 0 120px rgba(255,0,0,.15);
}

.lightbox-content img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#000;
}

/* Close button */
.lightbox-close{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    cursor:pointer;
    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:22px;
    line-height:42px;
    text-align:center;
    transition:.2s ease;
}

.lightbox-close:hover{
    background:rgba(255,0,0,.7);
    transform:scale(1.05);
}

.lightbox-close:focus{
    outline:2px solid rgba(255,255,255,.6);
}

/* Gallery items */
.gallery-item{
    cursor:zoom-in;
    position:relative;
}

.gallery-item img{
    pointer-events:auto;
    transition:.25s ease;
}

.gallery-item:hover img{
    transform:scale(1.03);
    filter:brightness(1.1);
}

@media (max-width: 768px){
    .hide-mobile{
        display:none !important;
    }
}

.mobile-only{display:none}
.desktop-only{display:block}

@media (max-width:768px){
    .section-img {
        display: none !important;
    }
    .mobile-only{display:block}
    .desktop-only{display:none}
}

/* ===== GAME SECTION MOBILE FIX ===== */
@media (max-width: 768px){

    .game-section{
        min-height:auto !important;
        height:auto !important;
        overflow:visible !important;
    }

    .game-section .hero-poster,
    .game-section img{
        transform:none !important;
        scale:1 !important;
        transition:none !important;
    }

    .game-section .hero-poster.mobile-static{
        width:100%;
        max-width:100%;
        height:auto;
    }
}

.floating-image-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  width: 250px;
  height: 220px;
  transform: translateY(-50%);
  z-index: 999;
  opacity: 1;

  /* Giriş + kontrollü titreşim */
  animation:
  floatBtnEnter 300ms ease-out forwards,
  bellCycle 5700ms linear 5s infinite;
}

/* Hover olunca tamamen dur */
.floating-image-btn:hover {
  animation-play-state: paused;
  transform: translateY(-50%) scale(1.03);
}

/* Görsel */
.floating-image-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* Giriş animasyonu */
@keyframes floatBtnEnter {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
}
to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
}

/*
  TOPLAM DÖNGÜ: 5.7s
  - %0–%12  → TİTREME (≈0.7s)
  - %12–%100 → TAM DURGUNLUK (≈5s)
*/
@keyframes bellCycle {
  0%   { transform: translateY(-50%) rotate(0deg); }
  2%   { transform: translateY(-50%) rotate(-8deg); }
  4%   { transform: translateY(-50%) rotate(8deg); }
  6%   { transform: translateY(-50%) rotate(-6deg); }
  8%   { transform: translateY(-50%) rotate(6deg); }
  10%  { transform: translateY(-50%) rotate(-3deg); }
  12%  { transform: translateY(-50%) rotate(0deg); }

  /* === 5 saniye TAM DURMA === */
  100% { transform: translateY(-50%) rotate(0deg); }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .floating-image-btn {
    animation: none !important;
    transform: translateY(-50%) !important;
}
}

/* Mobilde kapat */
@media (max-width: 768px) {
    .floating-image-btn {
        display: none;
    }
    
    .intro-logo {
        max-width: 100%;
    }
}

/* Scroll kilidi */
body.preloader-active{
    overflow: hidden !important;
    height: 100vh;
    touch-action: none;
}

#preloader{
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(2px);
    transition: opacity .3s ease, visibility .3s ease;
}

.preloader-logo{
    width: 120px;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

#preloader.hide{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.discord-widget {
    width: 392px;
    transition-property: left;
    transition-duration: 2s;
    -webkit-transition-property: left;
    -webkit-transition-duration: 2s;
    position: fixed;
    bottom: 0px;
    left: 10px;
    z-index: 999;
}

#game .hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;     /* görüntüyü kırpar ama ekranı doldurur */
  object-position: center;

  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* Popup Base */
.popup-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.72);
  z-index:99999;
  padding:24px;
}
.popup-overlay.is-open{ display:flex; }

.popup-modal{
  width: min(630px, 96vw);
  max-height:min(80vh, 720px);
  overflow:auto;
  background:rgba(15, 12, 10, .98);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding: 20px 20px;
  position:relative;
  box-shadow:0 20px 80px rgba(0,0,0,.6);
}

.popup-close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:28px;
  line-height:38px;
  cursor:pointer;
}

.popup-body{
    padding: 20px;
}

.popup-title{ margin:6px 0 6px; color:#fff; font-weight:800; }
.popup-desc{ margin:0 0 14px; color:rgba(255,255,255,.75); }

.popup-form{ display:grid; gap:12px; }
.popup-label{ color:rgba(255,255,255,.85); font-size:14px; display:grid; gap:6px; }

.popup-input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  outline:none;
}
.popup-input:focus{ border-color:rgba(255,255,255,.35); }

.popup-submit{
  margin-top:6px;
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:none;
  background:linear-gradient(90deg, #b80d13, #f2c24a);
  color:#111;
  font-weight:800;
  cursor:pointer;
}

/* Body scroll lock when popup open */
body.popup-lock{
  overflow:hidden !important;
  touch-action:none;
}
